home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-114.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12383);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2003-0084");
  13.  
  14.  name["english"] = "RHSA-2003-114: mod_auth_any";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated mod_auth_any packages are available for Red Hat Enterprise Linux.
  21.   These updated packages fix vulnerabilities associated with the manner in
  22.   which mod_auth_any escapes shell arguments when calling external programs.
  23.  
  24.   The Web server module mod_auth_any allows the Apache httpd server to
  25.   call arbitrary external programs to verify user passwords.
  26.  
  27.   Vulnerabilities have been found in versions of mod_auth_any included in Red
  28.   Hat Enterprise Linux concerning the method by which mod_auth_any escapes
  29.   shell arguments when calling external programs. These vulnerabilities
  30.   allow remote attackers to run arbitrary commands as the user under which
  31.   the Web server is running. The Common Vulnerabilities and Exposures
  32.   project (cve.mitre.org) has assigned the name CAN-2003-0084 to these
  33.   issues.
  34.  
  35.   All users are advised to upgrade to these errata packages, which change the
  36.   method by which external programs are invoked and, therefore, make these
  37.   programs invulnerable to these issues.
  38.  
  39.   Red Hat would like to thank Daniel Jarboe and Maneesh Sahani for bringing
  40.   these issues to our attention.
  41.  
  42.  
  43.  
  44.  
  45. Solution : http://rhn.redhat.com/errata/RHSA-2003-114.html
  46. Risk factor : High';
  47.  
  48.  script_description(english:desc["english"]);
  49.  
  50.  summary["english"] = "Check for the version of the mod_auth_any packages";
  51.  script_summary(english:summary["english"]);
  52.  
  53.  script_category(ACT_GATHER_INFO);
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  56.  family["english"] = "Red Hat Local Security Checks";
  57.  script_family(english:family["english"]);
  58.  
  59.  script_dependencies("ssh_get_info.nasl");
  60.  
  61.  script_require_keys("Host/RedHat/rpm-list");
  62.  exit(0);
  63. }
  64.  
  65. include("rpm.inc");
  66. if ( rpm_check( reference:"mod_auth_any-1.2.2-2", release:"RHEL2.1") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71.  
  72. if ( rpm_exists(rpm:"mod_auth_any-", release:"RHEL2.1") )
  73. {
  74.  set_kb_item(name:"CAN-2003-0084", value:TRUE);
  75. }
  76.  
  77. set_kb_item(name:"RHSA-2003-114", value:TRUE);
  78.